home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Examples / Printer / HP_DeskJet_CMYK / data.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-30  |  1.5 KB  |  50 lines

  1. /*
  2.  * $Id: data.h 44.7 1999/09/16 09:20:01 olsen Exp olsen $
  3.  *
  4.  * :ts=8
  5.  *
  6.  * COPYRIGHT:
  7.  *
  8.  *   Unless otherwise noted, all files are Copyright (c) 1999 Amiga, Inc.
  9.  *   All rights reserved.
  10.  *
  11.  * DISCLAIMER:
  12.  *
  13.  *   This software is provided "as is". No representations or warranties
  14.  *   are made with respect to the accuracy, reliability, performance,
  15.  *   currentness, or operation of this software, and all use is at your
  16.  *   own risk. Neither Amiga nor the authors assume any responsibility
  17.  *   or liability whatsoever with respect to your use of this software.
  18.  *
  19.  */
  20.  
  21. /****************************************************************************/
  22.  
  23. typedef LONG (* __stdargs PWRITE_T)(char *str,int len);
  24. typedef VOID (* PBOTHREADY_T)(VOID);
  25.  
  26. /****************************************************************************/
  27.  
  28. extern PWRITE_T PWrite;
  29. extern PBOTHREADY_T PBothReady;
  30.  
  31. /****************************************************************************/
  32.  
  33. extern struct Library * SysBase;
  34. extern struct Library * UtilityBase;
  35.  
  36. /****************************************************************************/
  37.  
  38. extern struct PrinterExtendedData * PED;
  39. extern struct PrinterData * PD;
  40.  
  41. /****************************************************************************/
  42.  
  43. extern STRPTR CommandTable[aRAW+1];
  44. extern STRPTR ExtendedCharTable[96];
  45. extern STRPTR DensityNames[8];
  46. extern struct TagItem PropertyTagList[];
  47. extern UBYTE GammaTables[15][256];
  48.  
  49. /****************************************************************************/
  50.